home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr14 / bowl101o.zip / INSTALL.BAT < prev    next >
DOS Batch File  |  1993-03-01  |  977b  |  52 lines

  1. echo off
  2. cls
  3. if not exist bowl101.exe goto :errordrive
  4. echo The Bowl101! Install Procedure copies all program
  5. echo files onto your hard drive in a directory called
  6. echo BOWL.
  7. echo INSTALL followed by the drive specification.
  8. echo Example.....
  9. echo.
  10. echo A:    Log to the drive containing BOWL101
  11. echo.
  12. echo.
  13. echo INSTALL C:
  14. echo.
  15. echo.
  16. echo Installs Bowl101! onto drive C:\BOWL
  17. echo.
  18. echo.
  19. echo Press Ctrl-Break if you wish to exit and start again or...
  20. if "%1"=="" goto error
  21. pause
  22. set d=c:
  23. set d=%1%
  24. :Copyall
  25. if exist %1%\bowl\bowl.mnu goto there
  26. MD %d%\bowl
  27. :there
  28. echo -1>%d%test101.101
  29. if not exist %d%test101.101 goto :error
  30. del %d%test101.101
  31. copy *.* %d%\bowl
  32. cls 
  33. CD %d%\bowl
  34. %1
  35. echo *  Installation Complete  *
  36. goto end
  37. :errordrive
  38. echo 
  39. echo.
  40. echo.
  41. echo Please Log to drive containing Bowl101 and try again.
  42. echo.
  43. echo.
  44. goto end
  45. :error
  46. echo 
  47. echo.
  48. echo.
  49. echo Please specify drive to install Bowl101 on.
  50. :end
  51.  
  52.